home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší České Hry 2007 / Nejlepší české hry 2007.iso / hry / Becher Tycoon / scripts / iteracia1.txt < prev    next >
Text File  |  2006-08-05  |  277b  |  17 lines

  1. new string s;
  2. new button b;
  3. new button c:b;
  4. new button d:b;
  5. new button bbb:b.d;
  6. s = 'c.id obsahuje: ';
  7. with b;
  8.   c.id = 2;
  9.   s = s +' ' +  c.id + ' ';
  10.   d.bbb.id = 5;
  11. without;
  12. b.c.id = 4;
  13. new string obbb;
  14. obbb = b.d.bbb.id;
  15. s = s+ '   b.c.id = ' + b.c.id;
  16.  
  17. end.